home *** CD-ROM | disk | FTP | other *** search
/ Next Step: Mars? / Next Step Mars (1994)(IVI).iso / modle3b.dir / 00020_Script_20 < prev    next >
Text File  |  1994-11-28  |  918b  |  40 lines

  1. on exitFrame
  2.   global BROWSE
  3.   global CAPSULEGlow
  4.   
  5.   
  6.   -- Here's a real catch all hack  
  7.   -- mdm 11-4
  8.   
  9.   
  10.   -- first see if they're in BROWSE mode
  11.   -- if yes, don't go to password
  12.   
  13.   if (BROWSE = TRUE) then 
  14.     set the cursor of sprite 1 to 0
  15.     set the cursor of sprite 2 to 0
  16.     set the cursor of sprite 3 to 0
  17.     set the cursor of sprite 4 to 0
  18.     set the cursor of sprite 5 to 0
  19.     set the cursor of sprite 6 to 0
  20.     set the cursor of sprite 7 to 0
  21.     set the cursor of sprite 23 to 0
  22.     
  23.     updateStage
  24.     
  25.     puppetsound(0)
  26.     go to frame "start" of movie "browser"   
  27.   else
  28.     -- then check if the error in logic from other movies got
  29.     -- us here, so will correct it here
  30.     
  31.     if CAPSULEGlow = 1 then
  32.       go to frame "PASS2ENTRY"
  33.     else
  34.       if CAPSULEGlow = 0 then
  35.         go to frame "PASS1ENTRY"
  36.       end if
  37.     end if
  38.   end if
  39. end
  40.